/* Reset default margins and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    font-family: 'Segoe UI', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: white;
}

/* Header styling */
/* Header Styling */
header {
    background-color: white;
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    min-height: 80px;
}

.header-container {
    display: flex;
    align-items: center;
    max-width: none;
    margin: 0;
    padding: 0 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-left: 0;
    margin-left: 0;
}

.logo img {
    width: 100px;
    height: 90px;
    object-fit: cover;
    margin-left: 0;
}

nav {
    margin-left: 2rem;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 0.5rem;
    margin: 0;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.3rem;
    padding: 0.75rem 1.25rem;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

nav ul li a:hover {
    color: green;
    background-color: #ecf0f1;
}

/* General section styling */
section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

section h2 {
    font-size: 2.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

/* Intro section */
.intro-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    background: #fff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.intro-text {
    flex: 1;
}

.intro-text p {
    font-size: 1.1rem;
    color: #555;
}

.intro-image {
    width: 35%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* Services section */
.services {
    background-color: #fff;
    padding-bottom: 5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.service-item {
    text-align: center;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.service-image {
    width: 80%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-item h3 {
    font-size: 1.6rem;
    color: #2980b9;
    margin-bottom: 0.75rem;
}

.service-item p {
    font-size: 1rem;
    color: #666;
}

/* Why Us section */
.why-us {
    background-color: #ecf0f1;
}

.why-us-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.why-us-image {
    width: 40%;
    border-radius: 10px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.why-us ul {
    list-style: none;
    flex: 1;
}

.why-us ul li {
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.why-us ul li strong {
    color: #2980b9;
    font-weight: 600;
}

/* Call to Action styling */
.cta {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    text-align: center;
    padding: 4rem 2rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.cta a {
    color: #3498db;
    text-decoration: none;
}

.cta a:hover {
    text-decoration: underline;
}

.cta-button {
    background-color: #2980b9;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.3rem;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #3498db;
}

/* Footer styling */
footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.9), rgba(52, 73, 94, 0.9));
    z-index: -1;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.footer-column {
    text-align: left;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-column:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.footer-column h3 {
    color: #ecf0f1;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    font-weight: 700;
    border-bottom: 2px solid #2e7eba;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.footer-column ul li::before {
    content: '•';
    color: #2e7eba;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.footer-column ul li a {
    color: #2e7eba;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.footer-column ul li a:hover {
    color: #1a3c5e;
    transform: scale(1.05);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-icon {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.75rem;
    background-color: #34495e;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-icon:hover {
    background-color: #2e7eba;
    transform: rotate(15deg) scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-bottom:hover {
    color: #ecf0f1;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 0 1rem;
    }

    .footer-column {
        padding: 1rem 0;
        margin-bottom: 2rem;
    }

    .footer-column ul li {
        padding-left: 0;
        text-align: center;
    }

    .footer-column ul li::before {
        display: none;
    }

    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }

    .footer-bottom {
        margin-top: 2rem;
    }
}